home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Acorn User: China
/
Acorn User China CD-ROM (UK) (Disc B)
/
Acorn User China CD-ROM (UK) (Disc B).bin
/
STUTTGART
/
ARCHIVERS
/
BEGINNER
/
TARZ
/
!tarZ_scandir
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1999-04-24
|
469 b
|
30 lines
BEGIN {
char x[ 128 ];
y=1; }
/' /
{
if (y==1)
{
x=$1;
y=0;
}
else
x=substr($1,2);
if (x=="Directory")
{
system(sprintf("access %s ",$2));
}
if (x=="File")
{
file=$2;
system(sprintf("access %s WR",$2));
command=sprintf("info %s",$2);
command | getline ;
close(command);
printf("settype %s %s\n",file,$3) > "<tarZ$use>.files._list" ;
}
}